/**
* $Id: theme.js 11 2009-08-07 08:58:45Z BitC3R0 $
* --------------------------
* Magazine-X theme for xoops
* @author Eduardo Cortés <i.bitecero@gmail.com>
* @license http://creativecommons.org/licenses/by-nc-sa/2.5/mx/
* @version 1.0
* @url http://redmexico.com.mx
*/
$(document).ready(function() {
	
	$("#mx-top-srhbox").focus(function(){
		if ($(this).val()=='enter search terms'){
			$(this).val('');
		}
		$(this).css('color','#333');

	});
	
	$("#mx-top-srhbox").blur(function(){
		if ($(this).val()==''){
			$(this).val('enter search terms');
		}

		$(this).css('color','');
		
	});
	
	$("div.xm_item").click(function(){
		window.location.href = $("#"+$(this).attr('id')+" a").attr('href');
	});
	
	$("div.mx_block_options a").click(function() {
		$("div.mx_block_options a").css('background','');
		$("div.mx_blocks_content").hide();
		$("div."+$(this).attr('rel')).show();
		$(this).css('background','#EEEEEE');
	});
	
});