$(document).ready(function(){
 
	//
	$("a[rel='external']").click(function() {
		window.open( $(this).attr("href") )
		return false;
	})
	
	/*
	$("#bt_filter").click(function() {
		submitForm("prod_filter")
	})
*/
	//alert('ready')

})


function getProduct(act){

	$.get(act, {}, function(html) {
		mdialog(html, 'Prekė')
	})
	
	return false
}

function mdialog(p_message, p_title)
{
  p_title = p_title || "";
  
  var $dialog = $('<div></div>')
		.html(p_message)
		.dialog({
			autoOpen: false,
			esizable: false,
			width: 550,
			height: 380,
			modal : true,
			overlay: { backgroundColor: "#000", opacity: 0.5},
			title:  p_title 
		});

	$dialog.dialog('open')
} 

function submitForm(id) {
	$("#"+id).submit()
	return false
}