$(document).ready(function(){
	//Overlay: Colorbox
	$('a.thickbox').colorbox({height:"95%"});
	
	//Thumnails Scroller
	if(countimage > 3){
		$('#wn').jCarouselLite({
			btnPrev:'#leftarrow a',
			btnNext:'#rightarrow a'
		});
	}
	
	// Cart Functions Start
	function changePrice() {
		var size = $("select#Size").val().split("-");
		var color = $("select#Colour").val().split("-");
		var quantity = $("select#quantity").val();
		var price = product_price + parseFloat(size[1]) + parseFloat(color[1]);
		
		$(".price").html("$" + price*quantity);
	}
	changePrice();
	
	$("select#Size").change(function() {
		changePrice();
	});
	$("select#Colour").change(function() {
		changePrice();
	});
	$("select#quantity").change(function() {
		changePrice();
	});
	
	// Cart Functions End
	
	$('.thumbnail').click(function() {
		$('#main_image').attr('src', $(this).attr('href'));
		$('#product_img a').attr('href', $(this).attr('title'));
		//alert($('#product_img a').attr('href'));
		return false;
	});
});
