﻿var imgLoader = "<div class='loader'><img src='http://i.streetmobster.com/tpl/img/streetcrime/loader.gif' width='31' height='31' alt=''/></div>";
jQuery(document).ready(function()
{
	//$('body').supersleight(); //Fix png
	jQuery('.screenshots table td.thumbs a.gshot').click(function()
	{
		var newURL = jQuery(this).attr('rel');
		var screen = jQuery(document).find('div.screenshot');
		
		var feature = screen.find('div.feature-update');
		if(feature) feature.remove();
		
		var img = screen.find('img');
		
 		if( newURL != img.attr('src') )
		{
			//img.css('display','none');
			screen.append(imgLoader);
			img.load(function()
			{
				jQuery(this).parent().find('.loader').remove();
			});
			img.attr('src',newURL);
		}
		return false;
	});

	//GAME TRAILER
	var settings =	{
		//"href":"/land/trailer",
		"overlayClose":true,
		"opacity":0.6,
		"transition":"none",
		"preloading":false,
		"open":false,
		"innerWidth":665,
		"innerHeight":430,
		"scrollbars":false,
		"iframe": true
	}
	$("a#game_trailer").colorbox(settings);

});
