jQuery(document).ready(function() {
	jQuery('.qtip').qtip({ 
	position: {
	   corner: {
	      target: 'rightMiddle',
	      tooltip: 'leftMiddle'
	   }
	},
	style: {		
		width: 280,
		name: 'light',
		tip: true
	} });
	
	jQuery("#csswitch").click(function(){
		css = jQuery("#csswitch").attr("rel"); 
		file = "css/" + css + ".css";
		jQuery("#colorcsslink").attr("href", file);
		
		if(css=="blue"){
			jQuery("#csswitch").html("Paint it red");
			jQuery("#csswitch").attr("rel", "none"); 
		}else{
			jQuery("#csswitch").html("Paint it blue");
			jQuery("#csswitch").attr("rel", "blue"); 			
		}
		
		jQuery.post("cookie.php?c="+css);
		return false;
	});
	
	//submit on enter
	jQuery("#loginhome input").keypress(function(e){
      if(e.which == 13){
       jQuery('form#loginhomeform').submit();
       }
    });


});




