$(document).ready( function() {

	$('.home-banner').flash ({
		swf: 'assets/swf/home.swf',
		width: 900,
		height: 280
		}
	);

	$('.submenu').corner('top 5px');
	$('.faq-contact').corner('5px');
	$('.faq').corner('tl bl 5px');
	$('.esd-questions').corner('tr br 5px');
	$('#downloads a').corner('5px');

	$('#nav-products .submenu').click( function() {
		$(this).siblings('ul').slideToggle();
	});

	$('a.external').click( function() {
		window.open($(this).attr('href'));
		return false;
	});

	$("a.photo-gallery").fancybox();

	$(".video-gallery").click(function() {
		$.fancybox({
			'padding'			: 0,
			'autoScale'			: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'title'				: this.title,
			'width'				: 640,
			'height'			: 385,
			'href'				: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'				: 'swf',
			'swf'				: {
			'wmode'				: 'transparent',
			'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
});

