// Product Catalog JavaScript

var catalogTable;

$(document).ready(function(){
	catalogTable = $('.datatable').dataTable({
		'sPaginationType':'full_numbers',
		'aaSorting':[[1,'asc']],
		'aoColumns':[{'bSortable':false},null,null,null,null],
		'fnInitComplete':initProductCatalog()
	});
});

var initProductCatalog=function() {
	$('a.icon-overlay').overlay({expose:'#c0c0c0',
		onBeforeLoad:function(){
		var wrap = this.getContent().find('div.wrap');
		this.getContent().find('h1').text(this.getTrigger().attr('title'));
		wrap.load(wrap.html('<p style="text-align:center;"><img src="' + this.getTrigger().attr('href') + '" /></p>'));
		}
	});

/*
	$('#search-catalog input[type=text]').keyup(function(){
		catalogTable.fnFilter($(this).val());
	});

	$('#catalog-products tr').hover(function(){
		$(this).find('.product-image').fadeIn();
	},function(){
		$(this).find('.product-image').fadeOut();
	});
*/
}