$(document).ready(function() 
{
	//Win button
	
	$("#winButtonLink").fancybox({
		'width'				: 640,
		'height'			: 475,
		'autoScale'			: true,
		'overlayShow'		: true,
		'scrolling'			: 'no',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("#specialist2").fancybox({
		'width'				: 640,
		'height'			: 475,
		'autoScale'			: true,
		'overlayShow'		: true,
		'scrolling'			: 'no',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
	
	$("#specialist").fancybox({
		'width'				: 640,
		'height'			: 475,
		'autoScale'			: true,
		'overlayShow'		: true,
		'scrolling'			: 'no',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});
});

//on mouse over
$('#winButtonLink').mouseover(function() 
{
	var target = document.getElementById('winButton');	
	target.id = "winButtonHover";
});

$('#winButtonLink').mouseleave(function() 
{
	var target = document.getElementById('winButtonHover');
	target.id = "winButton";
});

/*
$('#winButtonSend').mouseover(function() 
{
	var target = document.getElementById('winButtonSend');
	target.id = "winButtonSendOver";
});

$('#winButtonSend').mouseleave(function() 
{
	var target = document.getElementById('winButtonSendOver');
	target.id = "winButtonSend";
});
*/

