var swf_dir = 'swf';
var products_url = '';

$(document).ready(function(){
	$('.leftm_right > ul').hover(function(){
		$('ul', this).show();
	}, function(){
		$('ul', this).hide();
	});
	
});

function not_finished_alert()
{
    alert(not_finished_text);
}

function load_products(product_type)
{
	$.post(products_url, {type: product_type}, function(data){
		$('.product_page .products').after(data).remove();
	});
}
