// JavaScript Document
// jQuery

$(document).ready(function(){
	if( typeof document.body.style.maxHeight !== "undefined" ) $('#search :submit').replaceWith('<input type="image" src="/sites/achastablog.com/themes/blog/images/transparent.png" style="behavior: url(\'/sites/all/iepngfix.htc\');" alt="Submit button" id="search-submit-button" name="op" id="edit-submit" value="Search" />');
	$('#search :text').attr("placeholder","type keywords");
	
	
	if( $.browser.msie && $.browser.version < 8 ){
		if( $('#center-column').height() < $('#right-column').height() ){
			$('#center-column').height( $('#right-column').height()+100 );
		}
	}
	
});