( function($) { 
$(document).ready(function(){
	$('#slider').show();
	$("#slider").easySlider({
	auto: false,
	continuous: true,
	//numeric: true,
	nextId: "slider1next",
	prevId: "slider1prev"
	});
	
	 $('#sliderTicker').show();
	$("#sliderTicker").easySlider({
	auto: true,
	continuous: true,
	speed: 300,
	pause: 7000,
	//numeric: true,
	nextId: "slider1nextMe",
	prevId: "slider1prevMe",
	prevText: '',
	nextText: ''	
	});
	
	
});

$(document).ready(function(){

//Larger thumbnail preview 

$("div.thumb a").hover(function() {
	$(this).css({'z-index' : '10'});

	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-100px', 
			marginLeft: '-110px', 
			top: '75%', 
			left: '80%', 
			width: '110px', 
			height: '120px',
			padding: '10px' 
		}, 200);

	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '90px', 
			height: '99px', 
			padding: '5px'
		}, 400);
		$(this).find('.abc').remove();
});
});

} ) ( jQuery );


