$(document).ready(function(){
	
	$('#nav .nav > li')
	.bind('mouseenter',function(){
		$(this).children('ul').slideDown('fast');
	})
	.bind('mouseleave',function(){
		$(this).find('ul').slideUp('fast');
	});

	$('.videoplay a').click(function(){
		if (swfobject.hasFlashPlayerVersion("9")) {
			swfobject.embedSWF(
				$(this).attr('rel'),
				'videoplayer',
				575,450,
				'7.0.19.0',
				'/media/swf/expressInstall.swf',
				{
					variable:''
				},
				{
					allowFullScreen:'true',
					allowscriptaccess:'always',
					menu:'false',
					wmode:'opaque'
				},
				{
					id:'videoplayer',
					name:'videoplayer'
				}
			);
			return false;
		}
	});
	
	$('#product_contact').click(function(){
		var $form = $('<form/>',{'action':v_url_root + 'contact/index.php','method':'post'})
		.append($('<input/>',{'type':'hidden','name':'s','value':$("#js_prd_id").val() }));
		$('body').append($form);
		$form.submit();
		return false;
	});
	
});   

function f_exturl(path,url,title) {
	window.location.href = path + "links/link.php?url=" + url + "&title=" + title;
}
