jQuery(document).ready(function(){
	jQuery('.destaques .container').simpleGallery();
	jQuery('.fotos .container').photoSlider({marginOfImage:20});
	jQuery('.loja .itens').simpleGallery({imageClass:'produto', descriptionClass:'descricao'});
	
	alturaFotodia = jQuery(".fotododia").css("height");
	larguraFotodia = jQuery(".fotododia").css("width");
	alturaFotodiaR = alturaFotodia.split('p');
	larguraFotodiaR = larguraFotodia.split('p');
	
	if ((alturaFotodiaR[0]/larguraFotodiaR[0]) >= 0.7) {
		jQuery(".fotododia").css({"width" : "310px", "height" : "auto" });
	} else {
		jQuery(".fotododia").css({"height" : "262px", "width" : "auto" });
	}
		
	alturaNews = jQuery(".newsFoto").css("height");
	larguraNews = jQuery(".newsFoto").css("width");
	alturaNewsR = alturaNews.split('p');
	larguraNewsR = larguraNews.split('p');
			
	if ((alturaNewsR[0]/larguraNewsR[0]) >= 0.4) {
		jQuery(".newsFoto").css({"width" : "310px", "height" : "auto" });
	} else {
		jQuery(".newsFoto").css({"height" : "127px", "width" : "auto" });
	}
	
	
	alturaDestaque = jQuery(".destaqueFoto").css("height");
	larguraDestaque = jQuery(".destaqueFoto").css("width");
	alturaDestaqueR = alturaDestaque.split('p');
	larguraDestaqueR = larguraDestaque.split('p');
	
	if ((alturaDestaqueR[0]/larguraDestaqueR[0]) >= 0.3) {
		jQuery(".destaqueFoto").css({"width" : "640px", "height" : "auto" });
	} else {
		jQuery(".destaqueFoto").css({"height" : "225px", "width" : "auto" });
	}
	
	jQuery('.gws-escolhe .foto').fancybox({
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'speedIn'		: 300, 
		'speedOut'		: 300,
		'overlayShow'	: true,
		'overlayColor'	: '#000',
		'titleShow' 	: false,
		'onStart' : function(){jQuery('.youtubeVideo').hide(200)},
		'onClosed' : function(){jQuery('.youtubeVideo').show(200)}
		});
});



