$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
 
});


function myFocus(element) {
     if (element.value == element.defaultValue) {
       element.value = '';
     }
   }
   function myBlur(element) {
     if (element.value == '') {
       element.value = element.defaultValue;
     }
   }


function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}

$(document).ready(function() {
	$("a.iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
        'autoScale'     	: false,
       	'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn'	: '600',
		'speedOut'	: '200',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',

		'type'				: 'iframe'
	});
});

