﻿/*
	@name: Global
	@data: 19/02/2010
	@author: Rafael Gomes Alcantara
 	@e-mail: rafa@sngstudio.com
*/

/*- Variables -*/

/*-------------------*/

/*- Functions -*/
function size(){
	var height = $(window).height();
	var width = $(window).width();
	//
	$('#flashcontent').height(height);
	$('#flashcontent').width(width);
}
/*-------------------*/

/*- Ready -*/
$(document).ready(function(){
	//PNG
	$('body').supersleight();
	
	//Resize
	$(window).resize(function(e) {
		size();
	});
	size();
	
	//Flash
	$('#flashcontent').flash({
		swf: 'skin/swf/main.swf',
		width: '100%',
		height: '100%',
		hasVersion: '10.0.0',
		menu: "false",
		wmode: 'window'
	});
});
/*-------------------*/
