/**
 * @author adam
 */

 
 $(document).ready(function(){

	$('.special fieldset ul li .text').each(function(){
		$(this).val($.trim($(this).parent().text().replace(':',''))).attr('title',$(this).attr('value')).addClass('soft fullsize');
		$(this).parent().children("label").hide();
		$(this).addClass('blur');
	}).focus(function(){
		$(this).removeClass('blur');
		if($(this).attr('title') == $(this).attr('value'))
			$(this).attr('value','')
	
	}).blur(function(){
		if($(this).attr('value') == '')
			$(this).attr('value',$(this).attr('title')).addClass('blur')
	});
	
	$('#header h1').click(function(){
		window.location = ".";
	}).css('cursor','pointer')
	
	$('#nav ul li').mouseover(function(){
		$(this).addClass('hover');
	}).mouseout(function(){
		$(this).removeClass('hover');
	})

});

