jQuery(document).ready(function() { jQuery('#gifts-by-personality').jcarousel({
        auto: 3,
        wrap: 'circular'
    });

	// Drop downs
	$('#find-gift-occasion').change(function(){
		if($(this).val() != "")
			window.location.href=$(this).val();
	});

	$('#find-gift-personality').change(function(){
		if($(this).val() != "")
			window.location.href=$(this).val();
	});

	$('#find-gift-budget').change(function(){
		if($(this).val() != "")
			window.location.href=$(this).val();
	});
	
	// Coin slider
	$('#coin-slider').coinslider({ width: 433, height: 228, navigation: true, delay: 5000, opacity: 0.7, effect: 'straight' });
});
