$(document).ready(function(){
       
		// slider(s) effects
		var s_slider_main = 'scrollVert';// main slider
		var s_slider_sub = 'scrollHorz';// sub slider(work)
		// blindX / blindY / blindZ / cover / curtainX / curtainY / fade / fadeZoom / uncover / wipe
        // growX / growY / none / scrollUp / scrollDown / scrollLeft / scrollRight / scrollHorz / zoom
        // scrollVert / shuffle / slideX / slideY / toss / turnUp / turnDown / turnLeft / turnRight
		//		
		// show animated livefeed bar?
		var s_live = 'yes';// show yes/no
		//
		// the opacity of the menu icons/images
		var s_fade_img = 'yes';// fade yes/no
		var s_opacity = '0.8';// opacity of the images, use 0.5 till 1.0 
		//
		
		// focus on image(social) and fade the rest?
		var s_focus_img = 'yes';// focus yes/no
		//
		// slide the social btn on hover?
		var s_slide_social = 'yes';// slide social btn yes/no	
		//
		
		
		//---------------//
		// Do not change //
		//---------------//
		
	   	
       fade_all_img();// basic jquery show and hide		
	    move_to();// basic jquery animate
		
		
		//-----------------------------------------------------//
		// Do not change, only if you know what you are doing! // 
		//-----------------------------------------------------//
		
		
        
		
 	    	
		
		function move_to(){
			// social
			if(s_slide_social == "yes"){
				$('.socialbox').hover(function() {
					$(this).find("img").stop().animate({ marginLeft: '4px' }, 400);	
				}, function() { //mouse out
					$(this).find("img").stop().animate({ marginLeft: "2px" }, 400);
				});
			}
			// livefeed bar
			setTimeout(function(){ $("#live").animate({ left: '0' }, 400).animate({ left: '0' }, 400) }, 1800);
			if(s_live == 'yes'){
				$('#live').hover(function() {
					$(this).stop().animate({ left: '-495px' }, 400);	
				}, function() { //mouse out
					$(this).stop().animate({left: '33px' }, 400).animate({ left: '0' }, 400);
				});
			}else{
				$('#live').hide();	
		    }
		}		
		function fade_all_img(){
			if(s_focus_img == "yes"){
				$('.socialbox').hover(function() {
					$('.socialbox').stop().fadeTo("fast", 0.5);
					$(this).stop().fadeTo("fast", 1.0);
				}, function() { //mouse out
					$('.socialbox').stop().fadeTo("fast", 1.0);	
				});
			}
		}
       
		
});



		
		
