Cufon.replace('h1');

$(function () {
	
	$('#head_menu a').hover(function () {
		$('.bottom', this).fadeOut(250);
		$('.top', this).fadeIn(250);
	}, function () {
		$('.bottom', this).fadeIn(250);
		$('.top', this).fadeOut(250);
	});
	
	
	if ($.browser.msie) {
		$('#content #welcom #production a').hover(function () {
			$(this).addClass('hover');
		},
		function () {
			$(this).removeClass('hover');
		})
	}

	$('#maps').toggle(function () {
		$(this).addClass('view_big');
	}, function () {
		$(this).removeClass('view_big');
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
})

function sr_on(el, val){
  el.style.color='#c0c0c0';
  if (el.value == val){el.value = '';}
}

function sr_off(el, val){
  el.style.color='#a6a6a6';
	if (el.value == ''){el.value = val};
}

function field_date_min(el, val){
  if (el.value == val){el.value = '';}
}
