﻿/********************************************************
* Applies the Modal function for product images			*
* Author: Björn Hall ~Celebration studios~				*
* Author url: http://celebrationstudios.se				*
********************************************************/

$(document).ready(function() {

    $("a.modal").fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayColor'	:	'#000'
	});


});

