$(document).ready(function() {
	
	$("#allresults").hide();
	
	

	var pagination_options = {
	  num_edge_entries: 2,
	  num_display_entries: 8,
	  callback: pageselectCallback,
	  items_per_page:15,
	}
	function pageselectCallback(page_index, jq){
	  var items_per_page = pagination_options.items_per_page;
	  var offset = page_index * items_per_page;
	  var new_content = $('#allresults div.result').slice(offset, offset + items_per_page).clone();
	  $('#Searchresult').empty().append(new_content);
	  $("html, body").scrollTop(0); 
	  return false;
	}
	
	function initPagination() {
	  var num_entries = $('#allresults div.result').length;
	  // Create pagination element
	  $("#Pagination").pagination(num_entries, pagination_options);
	}
	     
    initPagination();
    
    
	$("a.fancybox_image").fancybox({
		'hideOnContentClick': true,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	$('#search').focus(function() {

		this.value = "";
	});
	
	
   	
	//jQuery('.product').quickpaginate( { perpage: 4, pager : $(".line") } );
	
});

