$(document).ready(function(){
	
	$('#footer-nav li').footerSeparator(' | ');	
	$(document.body).not('#videos').find('#flash').randomFlash();
	$('#section').sIFR(SITE.url_swf() + '/sifr.swf','#44230B');
	
});



$.fn.focusClass = function(){
	this
		.focus(function(){
			$(this).addClass('focus');
		})
		.blur(function(){
			$(this).removeClass('focus');
		});
};

$.fn.footerSeparator = function(x){
	this.not(':first').prepend(x);
};

$.fn.randomFlash = function(){
	var randomArray = function(){
		var randomArray = new Array('accion.swf','almada.swf','infante.swf','sexycomedias.swf');
		var ranNum= Math.floor(Math.random()*4);
		return randomArray[ranNum];
	}
	
	this.flash({
		src: SITE.data_swf() + '/' + randomArray(),
		width: 615,
		height: 202,
		bgcolor: '#F7EACA'
	});
};
