	$(function() {
			
				$('.rating').animate({width: 'toggle'},{duration: 3000});
			
		});
		
		$(function() { 
			$(".item-thumb").mouseover(function() { 
				$(this).find(".big-thumb-dark").show();
			});
			$(".item-thumb").mouseout(function() { 
				$(this).find(".big-thumb-dark").hide();
			}); 
		});
		
		$(function() { 
			$(".grid-item-thumb").mouseover(function() { 
				$(this).find(".grid-overlay").show();
			});
			$(".grid-item-thumb").mouseout(function() { 
				$(this).find(".grid-overlay").hide();
			}); 
		}); 

	function formatText(index, panel) {
    		  return index + "";
    	  };
    
        $(function () {
        
            $('.anythingSlider').anythingSlider({
                easing: "easeInOutExpo",       
                autoPlay: true,                
                delay: 4200,                    
                startStopped: false,         
                animationTime: 600,            
                hashTags: true,                
                buildNavigation: true,          
            		pauseOnHover: true,             
            		startText: "",                
    		        stopText: "",               
    		        navigationFormatter: formatText 
            });
            
            $("#slide-jump").click(function(){
                $('.anythingSlider').anythingSlider(6);
            });
            
    });
