// JavaScript Document

$(function(){
	// search 
	var search_content = $('#search').html();
	$('#search').html('');
	$('#sectionSearch').html(search_content);

	// newsletter 
	$('.widget form[@action="http://www.aweber.com/scripts/addlead.pl"]').parent().parent().parent().attr('id','newsletter');
	var newsletter_content = $('#newsletter').html();
	$('#newsletter').html('');
	$('#sectionNewsletter').html(newsletter_content);
	var h3_content = $('#sectionNewsletter H3').html();
	$('#sectionNewsletter H3').remove();
	$('#sectionNewsletter .textwidget').prepend('<h3>'+h3_content+'</h3>');
	$('#sectionNewsletter').append('<a href="7-reasons-to-subscribe" class="reasons">7 Reasons To Subscribe</a>');

	$('#sectionNewsletter input:submit').attr('class','btn');
	$('#sectionNewsletter td:contains("Name:")').empty();
	$('#sectionNewsletter td:contains("Email:")').empty();

	$('<small>Your First Name</small>').insertAfter('#sectionNewsletter input[@name="name"]');
	$('<small>Your E-Mail</small>').insertAfter('#sectionNewsletter input[@name="from"]');
	
	// sectionAds160x600 
	$('.widget H3:contains("Ads 160x600")').parent().attr('id','ads160x600');
	var ads_content = $('#ads160x600').html();
	$('#sectionAds160x600').html(ads_content);

});


