$(function(){

	
	$('.hoverimage').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });

	$("#printview").fancybox({
		'width'				: 700,
		'height'			: '85%',
        'autoScale'     	: false,
		'transitionIn'	:	'none',
		'transitionOut'	:	'none',
		'speedOut'		:	1000, 
		'centerOnScroll':	true,
		'type'				: 'iframe',
		onStart: function(){
			this.href = "";
		},
		onComplete: function(){
        	$("#fancybox-frame").attr("src", $('#printview').attr('hidehref'));
      	}

	});

});
