// JavaScript Document

jQuery(document).ready(function(){
										  
 
	/*** Slides ***/
	/** ----------------------------------------------------- **/
		
	slides();
		
	/*** Hover Effects ***/
	/** ----------------------------------------------------- **/
		
	jQuery('#feature_controller ul li a').hover(
		function () {
		jQuery(this).find('img').stop(false, true).animate({top: -7},{duration: 350, easing: 'easeInOutBack'});
	},
		function () {
		jQuery(this).find('img').stop(false, true).animate({top: 3},{duration: 350, easing: 'easeInOutBack'});
	})
	
	jQuery('#feature_scroll_left').hover(
		function () {
		jQuery(this).stop(false, true).animate({right: 102},{duration: 350, easing: 'easeInOutBack'});
	},
		function () {
		jQuery(this).stop(false, true).animate({right: 92},{duration: 350, easing: 'easeInOutBack'});
	})
	
	jQuery('#feature_scroll_right').hover(
		function () {
		jQuery(this).stop(false, true).animate({right: 7},{duration: 350, easing: 'easeInOutBack'});
	},
		function () {
		jQuery(this).stop(false, true).animate({right: 15},{duration: 350, easing: 'easeInOutBack'});
	})
	
 
	
	/*** Miscellaneous ***/
	/** ----------------------------------------------------- **/

	 
	jQuery(window).status='Classified Theme';
	
 

});

/*** Functions ***/
/** ----------------------------------------------------- **/
 
function feature_carousel_initCallback($carousel) {
	
	jQuery('.jcarousel-control a').bind('click', function() {
		$carousel.scroll(jQuery.jcarousel.intval(jQuery(this).attr('rel')));
		$carousel.startAuto(0);
		return false;
	});
	
	jQuery('#feature_scroll_right a, #feature_desc_wrapper a.carousel_desc_next').bind('click', function() {
		$carousel.next();
		$carousel.startAuto(0);
		return false;
	});
	
	jQuery('#feature_scroll_left a, #feature_desc_wrapper a.carousel_desc_prev').bind('click', function() {
		$carousel.prev();
		$carousel.startAuto(0);
		return false;
	});

};

 

