jQuery(document).ready(function($){$('ul.menu li').has('ul').addClass('menu-children');var textInputs=$('.search-input');var mainSearch=$('.search-form .search-input');var mainSearchDefault='Type and press enter';textInputs.focus(function(e){$(this).addClass('active');});textInputs.blur(function(e){$(this).removeClass('active');});mainSearch.focus(function(){if($(this).attr('value')==mainSearchDefault)$(this).attr('value','');});mainSearch.blur(function(){if($(this).attr('value')=='')$(this).attr('value',mainSearchDefault);});$('.thumbnail-title, .wp-caption-text').css({opacity:0.4})
$('.thumb-post, .wp-caption').hover(function(){if($(this).is('.right-edge')){$curr=$(this).next();}else{$curr=$(this).prev();}
$curr.animate({width:'100px'},300);$(this).animate({width:'480px'},300);$(this).find('.thumbnail-title, .wp-caption-text').stop().animate({opacity:0.9},300);},function(){$curr.animate({width:'290px'},300);$(this).animate({width:'290px'},300);$(this).find('.thumbnail-title, .wp-caption-text').stop().animate({opacity:0.4},300);});$('.front-page .secondary-post:nth-child(2n+1)').addClass('right-edge');$('.back-page .secondary-post:nth-child(2n), .search-page .secondary-post:nth-child(2n)').addClass('right-edge');$('#bottom .grid-12').masonry({singleMode:true});});
