var nav;
$(document).ready(function(){
	nav = new Navigator();
	
	initSlider();
	
	$('#footer .products li a').each(function(index){
		$(this).html( ' <b>|</b> &nbsp;'+$(this).text() );
	});
	
	$('#header .menu .menu_item').mouseover(function(){ onMenuItem($(this), '#5681be'); });
	$('#header .menu .menu_item').mouseout(function(){ onMenuItem($(this), '#83A0C8'); });
	// ------------------------------------
	
	styleCompatibility(); //personalizar compatibilidad con los navegadores
});

function onMenuItem(item, color) {
	item.css('background',color);
}//function

// ----------- Content home -------------
function initSlider() {
	//$('div.slider').css('background-image', 'url(/texzim/web/images/frontend/slider1.jpg)');
	$('#coin-slider').coinslider({ width:958, height:264, delay:3000, spw: 5, sph: 5, effect:'straight' }); //effect:random, swirl, rain, straight
	$('.cs-buttons').hide();
}//function


// ------------------- Seccion de Estilos para corregir compatibilidades con navegadores -------------------
function styleCompatibility() {
	//internet explorer 7
	if (nav.code=='ie' && nav.version<=7) {
		//$('#header .logo').css({'left':'-856px'});
	}
}//function
