$(function(){
		$('img.scaleimg').each(function(){
			var newsrc = '/file/image/src/';
			newsrc += $(this).attr('rel') + '/';
			newsrc += 'width/' + ($(this).parents('td').width()-20) + '/';
			newsrc += 'fill/1';
			$(this).attr('src', newsrc);
		})
		$('img.scaleimgnopad').each(function(){
			var newsrc = '/file/image/src/';
			newsrc += $(this).attr('rel') + '/';
			newsrc += 'width/' + ($(this).parents('td').width()) + '/';
			newsrc += 'fill/1';
			$(this).attr('src', newsrc);
		})
});

function showTrailer(trailer ){
	$('<a href="/ajax/showtrailer/trailer/' + trailer + '/width/700/height/420"></a>').fancybox({ onComplete: function() { 
		try
		{
		onComplete(); 
		}
		catch(err)
		{
		//Handle errors here
		}


		} }).click();
		}

$(document).ready(function() {
   // put all your jQuery goodness in here.
 
   	$("a.fancybox_iframe").fancybox({
				'width'				: 950,
				'height'			: 700,
				'autoScale'			: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
			
			
 });
 
 
 
function addHit(url, data)
{

    $.ajax({
       type: "POST",
       url: url,
       data: "var1=" + data,
       success: function(msg){
    		//do nothing
       }
     });
}


