$(function() {
	
	if ( $.browser.msie && $.browser.version.substr(0,1)<8 ) {
		$(document).pngFix();
		$('.offer-box .right p span').css('line-height', '22px');
		$('.offer-box-wide .bigger').css('line-height', '26px');
	}
	else if ( $.browser.msie && $.browser.version.substr(0,1)>7 ) {
		$('.offer-box .right p span').css('float', 'right');
	};
	
	$('.field')
		.focus(function(){
			
			if( $(this).val() == $(this).attr('title') ){
				$(this).val('');
			}
		})
		.blur(function(){
			if( $(this).val() == '' ) {
				$(this).val( $(this).attr('title') );
			}
		});
		
	$('#navigation ul li').hover(
	function (e) { $
	(this).children('.dd-menu').show(); },
	function (e) { $(this).children('.dd-menu').hide(); }
	);

 });

