(function($){

t=2;

$.fn.thumbnails_function=function(){ 

$('.thumbnail_container').mouseover(function(){

$($(this)).css({'cursor':'pointer'});
$('.thumbnail',$(this)).css({'margin-top':'-199px'});
$('.thumbnailTitle a',$(this)).css({'color':'#a9d46e'});

})

$('.thumbnail_container').mouseout(function(){
$('.thumbnail',$(this)).css({'margin-top':'0px'});										
$('.thumbnailTitle a',$(this)).css({'color':'#444444'});
})
//'http://couldthisbe.com'+
$('.thumbnail_container').click(function(){
//alert(baseUrl+$('a',$(this)).attr('href'));
window.location.href = baseUrl+$('a',$(this)).attr('href');
})


//CLOSE THUMBNAILS FUNCTION
}
				
// CLOSE FUNCTION
})(jQuery);
