/* ============================================================================== fadeNav
*/
$(function (fadeNavi) {
	$(".fade a").load(function(){
		$(this).fadeTo(100, 1);
	});

	$(".fade a").hover(
		function(){
			$(this).fadeTo(100, .4);
	},

	function(){
		$(this).fadeTo(100, 1);
	});
});


/* ============================================================================== easySlider
*/
		$(document).ready(function(){	
			$("#slider").easySlider({
				prevId:'prevBtn',
prevText:'Previous',
nextId:'nextBtn',
nextText:'Next',
controlsShow:true,
controlsBefore:'',
controlsAfter:'',
controlsFade:true,
firstId:'firstBtn',
firstText:'First',
firstShow:false,
lastId:'lastBtn',
lastText:'Last',
lastShow:false,
vertical:false,
speed:300,
auto:true,
pause:2000,
continuous:true, 
numeric:true,
numericId:'controls'
				
			});
		});	
/* ============================================================================== jScrollPane
*/
$(function(){$('#new-shop').jScrollPane({scrollbarWidth:9});;});

/* ============================================================================== pngFix
*/
	$(document).ready(function(){
		$('div#side-head').pngFix( );
	});
	
	
/* ============================================================================== accessible-news-slider
*/

$(function() {
	
		$( "#new-snaps" ).accessNews({
	        speed : "fast",
			slideBy : 5
	    });
		
	});
	
	
/* ============================================================================== lightbox
*/


    $(function() {
        $('#lightbox a').lightBox();
    });
	
	
	
/* ============================================================================== 
*/	
$(document).ready(function(){
	$("#snap-list li:nth-child(4n)").css({marginRight:"0"})
});
