$(document).ready(function() {

	$("a#single_1").fancybox({
		'overlayShow'			: true,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
		
	$("a#single_2").fancybox({
		'overlayShow'			: true,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a#single_3").fancybox({
		'overlayShow'			: true,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
		$("a#single_4").fancybox({
		'overlayShow'			: true,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
		$("a#single_5").fancybox({
		'overlayShow'			: true,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
		$("a#inline").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.group").fancybox({
		'hideOnContentClick': false
	});	

});

$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
   }, function() {
       var currentImg = $(this).attr('src');
       $(this).attr('src', $(this).attr('name'));
       $(this).attr('name', currentImg);
   });
});

$(function() {
    $('.prev').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
   }, function() {
       var currentImg = $(this).attr('src');
       $(this).attr('src', $(this).attr('name'));
       $(this).attr('name', currentImg);
   });
});

$(function() {
    $('.next').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
   }, function() {
       var currentImg = $(this).attr('src');
       $(this).attr('src', $(this).attr('name'));
       $(this).attr('name', currentImg);
   });
});

$(function() {
    $('.video').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('name'));
        $(this).attr('name', currentImg);
   }, function() {
       var currentImg = $(this).attr('src');
       $(this).attr('src', $(this).attr('name'));
       $(this).attr('name', currentImg);
   });
});


