// JavaScript Document
$(document).ready(function(){
	$('.product_specs_more').click(function(){
		id = $(this).attr("id").replace("more_","");
		if($(this).html() == "More Details ..."){
			$(this).html("Less Details ...");
			$('#p_'+id).addClass("product_bigger");
			$('#ps_'+id).addClass("product_specs_bigger");
			$('#psb_'+id).removeClass("product_spec_box");
			$('#psb_'+id).addClass("product_spec_box_bigger");
			$('#pdx_'+id).addClass("details_box_bigger");
			$.get("includes/product_description.php",{"id":id},function(data){
				$('#pd_'+id).html(data);
			});
			$('#pd_'+id).css({display:"block"});
			$.get("includes/product_specs.php",{"id":id},function(data){
				$('#specs_'+id).html(data);
			});
			$.get("includes/product_contract_details.php",{"id":id},function(data){
				$('#pdx_'+id).html(data);
			});
			$('#special_'+id).css({display:"none"});
		}else{
			$(this).html("More Details ...");
			$('#p_'+id).removeClass("product_bigger");
			$('#ps_'+id).removeClass("product_specs_bigger");
			$('#psb_'+id).addClass("product_spec_box");
			$('#psb_'+id).removeClass("product_spec_box_bigger");
			$('#pdx_'+id).removeClass("details_box_bigger");
			$('#pd_'+id).html("");
			$('#pd_'+id).css({display:"none"});
			$.get("includes/product_specs_short.php",{"id":id},function(data){
				$('#specs_'+id).html(data);
			});
			$.get("includes/product_contract_details_short.php",{"id":id},function(data){
				$('#pdx_'+id).html(data);
			});
			$('#special_'+id).css({display:"block"});
		}
	});
	$('#vmc_link').click(function(){
		if($.browser.msie){
			$('#vmc').css({top:document.documentElement.scrollTop});
			$('#vmc').css({left:(document.documentElement.clientWidth-900)/2});
		}else{
			$('#vmc').css({top:window.pageYOffset});
			$('#vmc').css({left:(window.innerWidth-900)/2});
		}
		$('#vmc').show("slow");
		return false;
	});
	$('#close').click(function(){
		$('#vmc').hide("slow");
	});
});