$(function(){
	

	//======================
	// header
	//======================
	
	// buscador en focus
	var msjBuscar = "Buscar";	

	$("#s").val(msjBuscar);
    $("#s").css({ "color":"#666666", "font-style":"italic" });	
	$("#s").focus(function(){	
		if ($(this).val() == msjBuscar){
			$(this).val("");
		    $(this).css({ "color":"#000000", "font-style":"normal" });
		}
	});
	$("#s").blur(function(){
		if (jQuery.trim($(this).val()) == ""){
			$(this).val(msjBuscar);			
		    $(this).css({ "color":"#666666", "font-style":"italic" });
		}	
	});
	
	// inserta Flash de parlantes en header
	$('#parlante_izq, #parlante_der').flash({
		swf: "/wp-content/themes/darkpress-home/swf/bow-wow.swf",
		wmode: "transparent",
		width: 166,
		height: 153
	});
	$('#quees').flash({
		swf: "/swf/base.swf",
		width: 960,
		height: 670
	});
	
	//======================
	// home
	//======================
	
	
	//======================
	// footer
	//======================

	//======================
	// modal
	//======================
	$("a[href$=jpg]").prettyPhoto({showTitle: false});
	$("a[href$=gif]").prettyPhoto({showTitle: false});
	$("a[href$=png]").prettyPhoto({showTitle: false});
	$("a[rel^='prettyPhoto']").prettyPhoto({showTitle: false});
	
	
	
	
	
});