/******************************************************************************
* web.js
*
* Scripts generals per la web
*
*	Albert Sunyer @ Soluciones Multimedia Tec (SMTec) 2009 | http://www.smtec.es
******************************************************************************/

var WEB={
	xxxx:function(){
		
	}
}

$(document).ready(function(){
	/** Enllaços generals *******************************/
	$('a[rel="external"]').click(function(){
		window.open(''+this.href+'');
		return false;
	});
	
	//script para submenu flotante
	if($.browser.msie) { 
		$(".menu li.opensub").hover(function() {		
			$(this).children('ul').show();
		}, function() { 
			$(this).children('ul').hide();
		});
	} else {
		$(".menu li.opensub").hover(function() {		
			$(this).children('ul').fadeIn(250);
		}, function() { 
			$(this).children('ul').fadeOut(250);
		});
	}
	
	
	//bocadillo
	if($.browser.msie) { 
		$(".openbocata").hover(function() {		
			$(this).parent().children('.bocata').show();
		}, function() { 
			$(this).parent().children('.bocata').hide();
		});
	} else {
		$(".openbocata").hover(function() {		
			$(this).parent().children('.bocata').fadeIn(250);
		}, function() { 
			$(this).parent().children('.bocata').fadeOut(250);
		});
	}
});
