// JavaScript Document

jQuery(document.body).ready(function(){
	
	jQuery('#pdt').css({
		marginRight:'2px',
		width:'70px',
		height:'240px'
	});
});

function reloadtimg(id)
{
	jQuery('#preloader').show();
	var img = new Image();
	img.src = id;
	jQuery(img).load(function(){
	  jQuery('#contimg').css({background:'url(' + id + ') no-repeat'});
	  jQuery('#preloader').hide();
  });
	
}