function appendHeader(path){
	
	$('head').append('<link rel="stylesheet" href="'+path+'" type="text/css" />');
}

$(document).ready(function(){
	openAndCloseFAQ();
	makeDivLinkable();
	
	$("#wrapper #right").corner("5px");
	$(".top-bar .col1").corner("5px");
	$("#wrapper #center .form").corner("5px");
	$("#wrapper #center #block_informative_blocks_contactinfo").corner("5px");
	$("#wrapper #center #block_gmap_mirodeclocation").corner("5px");
	
	
	//testimonials block
	$('#block_testimonials_block').before("<div class='testimonial-title'></div>");
	$('#block_testimonials_block').after("<form id='feedbackform' method='post' action='/contact-us.html'><input type='hidden' name='feedback' value='1' /><input type='hidden' name='subject' value='Feedback' /><div><a href='#' onclick=\"$('#feedbackform').submit();\" >Send us Your Feedback</a></div></form>");

	 $("#marquee").marquee({yScroll: "bottom"});
	 
});

function openAndCloseFAQ(){
	
	$('#block_faq_list .record').click(function(){
		
		
		if( $(this).children(".field-answer").css('display') =='none' ){
			
			$('#block_faq_list .record .field-title').removeClass('faq-active-link');
			$('#block_faq_list .record .field-answer').slideUp(100);
			
			$(this).children(".field-title").addClass('faq-active-link');
			$(this).children(".field-answer").slideDown(400);
		}
		else {
			$(this).children(".field-title").removeClass('faq-active-link');
			$(this).children(".field-answer").slideUp(400);
		}
	});
}

function makeDivLinkable(){
	
	$(".field-title div a").each(function(){
		
		var urlLink = $(this).attr('href');
		$(this).parent().parent().parent().click(function(){
			window.location.href= urlLink;
		});
	});
}
