$(document).ready(function() {	
    
    $("div.news ul.categorias li a").click(function(){
        var id = $(this).attr('rel');
        $("div.noticia_detalle div.not").fadeOut(300);
        $("div.noticia_detalle div." + id).fadeIn(300);
        console.log('/img/noticias/'+id+'.jpg');
        $("div#productos_interior.news").css('background-image','url(/img/noticias/'+id+'.jpg)');
    });
    
	$("a.checkbox").click(function() {
		var checkbox = $(this).find("input[type=checkbox]");
		checkbox.attr("checked", !checkbox.attr("checked"));
	});
	
	$('ul.categorias li a.categoria').click(function() { // Expandir las marcas
		if ($(this).siblings('ul.marcas').css('display') == 'none') {
			$('ul.marcas').slideUp('slow');
			$('ul.categorias li a.categoria').removeClass('selected');
			$(this).siblings('ul.marcas').slideToggle('slow');
			$(this).addClass('selected');
		}
	});
	
	$('div#main div.productos').each(function() {
		var numero = Math.floor(Math.random() * (11));
		var imagenes = new Array(11);
		imagenes[0] = "me1";
		imagenes[1] = "ro";
		imagenes[2] = "jr";
		imagenes[3] = "cl";
		imagenes[4] = "no";
		imagenes[5] = "fu";
		imagenes[6] = "me2";
		imagenes[7] = "si";
		imagenes[8] = "ss";
		imagenes[9] = "cc";
		imagenes[10] = "bw";
	});
	
	$('ul.marcas li a').click(function() { // Expandir descripcion de las marcas + colocar imagen de fondo
        
        if(!$(this).hasClass("selected")){
            $("div#productos_interior").css("background","none");
            $('div.marcas p[class!="' + $(this).attr('class') + '"]').hide();
    		$('p.' + $(this).attr('class')).fadeIn(450);
    		$('div#main div.productos').css('background', 'url(/img/backgrounds/' + $(this).attr('class') + '.jpg) 606px 0px no-repeat');
    		$('ul.marcas li a').removeClass('selected');
    		$(this).addClass('selected');
        }
	});
	
	/*$('div.secciones h1 a').click(function() {
		if ($('p.' + $(this).attr('id')).css('display') == 'none') {
			$('div.secciones p').slideUp('slow');
			$('p.' + $(this).attr('id')).slideToggle('slow');
		}
	});*/
	
	$('div.thumbs a').click(function() {
		$('div#galeria img.imagen').attr('src', $(this).find('img').attr('src'));
		$('div#galeria a.fancy').attr('href', $(this).find('img').attr('src'));
	});
	
	$(".confirmar").click(function() {
		return confirm("Estas seguro que deseas borrar este registro?");
	});
	
	$("a.fancy").fancybox({
		'enableEscapeButton': true,
		'overlayShow': false,
		'cyclic': true
	});
	
	$("a.iframe").fancybox({
		'enableEscapeButton': false,
		'showCloseButton': false,
		'overlayShow': false,
		'width': 860,
		'height': 310,
		'titleShow': false
	});
	
	$("#flashMessage, #authMessage").attr('title', 'FG Highend');
	
	$("#flashMessage, #authMessage").dialog();
	
	nicEditors.allTextAreas({fullPanel: true});
	
	$(".datepicker").datepicker({dateFormat:'yy-mm-dd', dayNamesMin:['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sa'], monthNames:['Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], firstDay:1});
});

