/* Author:

*/

$(document).ready(function() {

//Slideshow

$("#slideshow-wrap").cycle({
	pager: '#slidenav'
});

$(".carousel-wrap").carouFredSel({
	items: 6,
	scroll: 1,
	auto: false,
	prev: '.carousel-prev',
	next: '.carousel-next'
});

$(".grid-row article:last-child").addClass("last");

//Search Key Enter
$('#search input[name=s]').focus().keypress(function (e)
	{
	if (e.which == 13)
		{
		var s = $("#search input[name=s]").val();
		var u = $("#search input[name=s]").attr('usemap')
		if(s.length>0) { window.location= u + '?q=' + escape(String(s)); }
		}
	});

// Pagination helper
$('#pagination ul').children('span').remove();

//End Ready
});

