$(function() 
{
	$("body").delegate(".btndemo_rollover", "click", function() 
	{
		var rel = $(this).attr('rel');
	
		$(this).attr('href', '/contact_request_demo.php?width=649&height=520&rel=' + rel);
	
		var dWidth  = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));  
		var dHeight     =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));  
	
		$.fancybox({
			'width':dWidth,  
			'height':dHeight,
			'overlayShow'	: true,
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'autoDimensions': false,
			'href'			: this.href,
			'scrolling'		: 'no',
			'type'			: 'iframe',
			'centerOnScroll': 'true',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
	
		$(this).attr('href', '/contact/');
	
		return false;
	});
	
	$("body").delegate(".btncontactus_rollover", "click", function() 
	{
		var rel = $(this).attr('rel');
	
		$(this).attr('href', '/contact_popup.php?width=649&height=520&rel=' + rel);
	
		var dWidth  = parseInt($(this).attr('href').match(/width=[0-9]+/i)[0].replace('width=',''));  
		var dHeight     =  parseInt($(this).attr('href').match(/height=[0-9]+/i)[0].replace('height=',''));  
	
		$.fancybox({
			'width':dWidth,  
			'height':dHeight,
			'overlayShow'	: true,
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'autoDimensions': false,
			'href'			: this.href,
			'scrolling'		: 'no',
			'type'			: 'iframe',
			'centerOnScroll': 'true',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
	
		$(this).attr('href', '/contact/');
	
		return false;
	});
});
