
//preload images

var logo = new Image();
logo.src = themepath + "/images/logo.png";

var logo_hover = new Image();
logo_hover.src = themepath + "/images/logo_hover.png";

$(function() {

	$('#logo a img').hover(function ()	{
		$(this).attr('src',logo_hover.src);
	},
	function ()	{
		$(this).attr('src',logo.src);
	});

	$('input,textarea').live('focus',function ()	{
		$(this).addClass('active');
	});
	$('input,textarea').live('blur',function ()	{
		$(this).removeClass('active');
	});

});
