$(document).ready(function() {
	$('#s').focus(function() {
		if (this.value == 'Search the entire site') {
			this.value = '';	
		}
	});
	$('#s').blur(function() {
		if (this.value == '') {
			this.value = 'Search the entire site';	
		}
	});
	
	//Post Image on Listings Page click to permalink
	$('.home .post img:first-child, .archive .post img:first-child, .search .post img:first-child').addClass('clickable');
	$('.home .post img:first-child, .archive .post img:first-child, .search .post img:first-child').hover(function() {
		$(this).fadeTo("slow",0.85);																						   
	}, function() {
		$(this).fadeTo("slow",1.0);
	});
	
	$('.home .post img:first-child, .archive .post img:first-child, .search .post img:first-child').click(function() {
		var getHref= $(this).parent().parent().find('h2 a').attr('href');
		window.location = getHref;

	});
	
	//About Sidebar
	var char = $('#section-about p').text();
	var charLength = $(char).length;

	//Gallery Lightbox
	$('.gallery a').lightBox({
		fixedNavigation:true, 
		imageLoading: '/blog/wp-content/themes/we3/images/lightbox-ico-loading.gif',
		imageBtnClose: '/blog/wp-content/themes/we3/images/lightbox-btn-close.gif',
		imageBtnPrev: '/blog/wp-content/themes/we3/images/lightbox-btn-prev.gif',
		imageBtnNext: '/blog/wp-content/themes/we3/images/lightbox-btn-next.gif',
	});

});
