// JavaScript Document
function showBusy(){
}
function paginate(html){
		$('#thumbnails').html(html);
}
function updateProduct(html){
		$('#ajax_display').html(html).fadeIn('slow');
}
//Ajax Pagination
$(document).ready(function() {

	$('ul#pagination > li > a').live('click', function(eve){
		eve.preventDefault();
		
		var link = $(this).attr('href');
		
		$.ajax({
			url: link,
			type: "GET",
			dataType: "html",	
		  	success: function(html) {
		    	paginate(html);
		 	}
		});
		
	});
	$('a.productSelect').live('click', function(eve){
		eve.preventDefault();
		
		var link = $(this).attr('href');
		
		$.ajax({
			url: link,
			type: "GET",
			dataType: "html",	
		  	success: function(html) {
		    	updateProduct(html);
		 	}
		});
		
	});
	
	
});