(function($) {

$.ajaxSetup({cache: false});

$(document).ready(function() {

//move footerStuff to footer
if( $("#header_landing").length) {
$.get('/Portals/116691/footerLanding.html', function(data) {
	$('#footer').prepend(data);
});

} else {

$.get('/Portals/116691/footerStuff.html', function(data) {
	$('#footer').prepend(data);
});

}
$("#footer").appendTo("form#Form");


//google search box
$("#googlesearchbox").prependTo("#foxboro_header #header-top .search");
$("#googlesearchbox .googlesearch").val("Search the entire site here...");
$("#googlesearchbox .googlesearch").click(function() {
	if($(this).val() == "Search the entire site here...") $(this).val("");
	$(this).addClass("focused");
});
$("#googlesearchbox .googlesearch").blur(function() {
	if($(this).val() == "") $(this).val("Search the entire site here...");
	$(this).removeClass("focused");
});

// SHOW BLOG NAVIGATION OPTIONS IF LOGGED IN
if( $("#hsnavigation").length) {
    $("p.hk_menu").show();
}

//testimonial modules
$("div.block:has(.feedreader_box):contains('What others are saying')").addClass("testimonials-block");
$("div.testimonials-block td").each(function() {
    $(this).find("div.ItemDetails").prependTo(this);
    $(this).find("div.ItemLink").appendTo(this);
});
$("div.testimonials-block div.ItemLink a").each(function(){
	$(this).removeAttr("href");
});
$("div.testimonials-block div.feedreader_box").append(' <a href="/about-enow/testimonials/" class="viewAll">View All Testimonials &rarr;<a/>');
$("div.feedreader_box td").show();


// EXECUTE PRETTY PHOTO LIGHTBOX
$("a[rel^='prettyPhoto']").prettyPhoto();


});

})(jQuery);
