(function($){

Site.init = function(){
	
	/**
	 * Downloads: Use an iframe to make the download effect without refreshing the whole site.
	 * @url http://www.justaquit.com/
	 */
	if(!$.isIE()){
		$('#wallpapers a').click(function(){
			if(!Site.temp.iframe)
				Site.temp.iframe = $('<iframe style="display:none;" src="'+this.href+'"></iframe>').appendTo(document.body);
			else
				Site.temp.iframe.attr('src', this.href);
			return false;
		});
	}
	
	
	/**
	 * Photos: Use jQuery LightBox
	 * @url http://leandrovieira.com/projects/jquery/lightbox/
	 */
	$('.photos a').lightBox({
		fixedNavigation: true
	});
	
	
	/**
	 * Trailer: Use jQuery Flash to embbed the trailer on the site.
	 * @url http://www.jquery.lukelutman.com/plugins/flash/
	 */
	$('#trailer:eq(0)').flash({
		src: Site.info.url + 'uploads/media/trailer.swf',
		width: 672,
		height: 363,
		bgcolor: '#CCCCCC',
		wmode: 'transparent',
		flashvars: { xmlfile: Site.info.url + 'trailer.xml' }
	});
	
}

})(jQuery);