function textboxHeight() {

	var sidebarHeight = jQuery('#sidebar_frontpage').height();
	var contentHeight = jQuery('#content').height();
		
	if (sidebarHeight > contentHeight) {
		jQuery('#content').height(sidebarHeight);
	}
}


jQuery(function(){
	var originalPath = jQuery("#galleryImg img").attr("src");
	jQuery(".entryimages div").hover(
		function() {
		    var largePath = jQuery(this).attr("rel");
		    var largeAlt = jQuery(this).attr("title");		
		    jQuery("#galleryImg img").attr('src', largePath);
		},
		function() {
			jQuery("#galleryImg img").attr('src', originalPath);
		});
});


