$(function(){
	/* Default value */
	$("input.default-value").focus(function() {
    	if (this.value == this.defaultValue) { this.value = ''; }
    }).blur(function() {
      	if (this.value == '') { this.value = this.defaultValue; }
    });
	
	if ($.browser.msie && $.browser.version < 8.0){
		$('#header .navigation li').hover(function(){ $(this).addClass('sfhover'); }, function(){ $(this).removeClass('sfhover'); });
	}

	var rightImage = $('#left .rightImage');
	if (rightImage.length > 0) {
		$('#right').prepend(rightImage);
	}


});
