
$(document).ready(function() {
	var C = {
		overlayOpacity : 0.9,
		overlayColor   : '#191b1a',
		titlePosition  : 'over'
	};
	$('a[target="_fancybox"],a[rel="group"]').fancybox(C);
    $('.slider').cycle({
		  fx: 'fade'
		 });
	$('a.media').media();
	if($('.Ierror')[0]) {
		$('html, body').animate({scrollTop:$('.Ierror:eq(0)').offset().top}, 'fast',
			function() {
					$.fancybox(
					'<h2>'+$('h1').text()+'</h2><p style="color:red">'+$('legend').text()+'</p>',
					{
			        		'autoDimensions'	: false,
						'width'         		: 350,
						'height'        		: 'auto',
						'transitionIn'		: 'none',
						'transitionOut'		: 'none'
					}
					);	
			}
		
		);
			
	}
	// CLEAR INPUT FIELD
	$('.clear_input').each(function() {
		if($(this).val()=='') {
			$(this).val($(this).attr('alt'));
		}
		$(this).focus(function() {
				if($(this).val()==$(this).attr('alt')) {
					$(this).val('');
				}
			})
			.blur(function() {
				if(!$(this).val()) {
					$(this).val($(this).attr('alt'));
				}
			});
	});
});
