/*
 * jQuery functions
 * Written by AppThemes
 *
 * Copyright (c) 2011 AppThemes (http://www.appthemes.com)
 *
 * Built for use with the jQuery library
 * http://jquery.com
 *
 * Version 1.0
 *
 * Left .js uncompressed so it's easier to customize
 */

// <![CDATA[

jQuery(document).ready(function() {
    jQuery(".slide-contain").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        visible: 5,
		hoverPause:true,
        auto: 2800,
        speed: 1100,
        easing: "easeOutQuint" // for different types of easing, see easing.js
    });
	
	jQuery('a.mini-comments').live('click', function() {
		// alert (jQuery(this).attr('href'));
		jQuery.fn.colorbox({
			href:jQuery(this).attr('href'),
			transition:'fade'
			});
		return false;
	});

});


// ]]>

