// jquery
$(document).ready(function(){ 
	// round corners
	$('.RoundCorner').corner("10px");

	// home page slideshow
	$('#homeSlideshow').cycle({
		height:  'auto',	// container height 
	    fade:     1,		// true for fade, false for slide 
	    speed:    1000,		// any valid fx speed value 
	    timeout:  8000,		// ms duration for each slide 
	    random:   0,       // true for random, false for sequence 
	    fit:      0,       // force slides to fit container 
	    pause:    0,       // true to enable "pause on hover" 
	    autostop: 0        // true to end slideshow after X slides have been shown (where X == slide count) (note that if random == true not all slides are guaranteed to have been shown) 
	});
	
	// anti spam form validation
	$('input,textarea').keypress(function(){
		try {
			this.form.elements.pv.value='verified';
		} catch(e){}
	});

	// scrollpane
	$('#scroll-pane-holder').jScrollPane({ 
		scrollbarWidth:20,
		dragMaxHeight:20,
		scrollbarMargin:20
	});
	
	// press
	$('.imgLarge').hide();
	$('.imgLarge:first').show();
	
	$('#imgThumbs a:first').addClass('selected');
	$('#imgThumbs a').hover(function() {
		$(this).addClass('active');
	}, function() {
		$(this).removeClass('active');
	});
	
	$('#imgThumbs a').click(function(){
		$('.imgLarge').hide();
		$('#imgThumbs a').removeClass('selected');
		$(this).addClass('selected');
		var strImageToShow = $(this).attr('rel');
		$('#'+strImageToShow).fadeIn();
	});	
	
	// customer service
	$('#contact-us,#about-our-jewelry').jScrollPane({ 
		scrollbarWidth:20,
		dragMaxHeight:20,
		scrollbarMargin:20
	});
	
	// png fix for old IE browsers
	$(document).pngFix();
});
