// ADD CSS CLASSES
jQuery(document).ready(function() {
	jQuery('div.post:first').addClass('first');
	jQuery('div.post:last').addClass('last');
	jQuery('#siteNav li:last-child').addClass('last');
	jQuery('#hc h3:first-child').addClass('title');
});
// DROP DOWN
jQuery(document).ready(function() { 
	jQuery('#header ul.sf-menu').superfish({ 
        delay: 200, 
        animation: {height:'show'},
        speed: 300,
        autoArrows: false,
        dropShadows: false 
       	});
});
// OPEN REL EXTERNAL LINKS IN NEW WINDOW
jQuery(document).ready(function() {
jQuery('A[rel="external"]').click( function() {
	window.open( jQuery(this).attr('href') );
        return false;
    	});
});
// ADD BLUE BLOCK WITH CURVES TO NAV ACTIVE
jQuery(document).ready(function() {			
	jQuery('#siteNav ul:first-child > li.current_page_item').append('<div class="active">');
	jQuery('#siteNav li.current_page_item').parents('li').append('<div class="active">');
});
// ADD CLASSES FOR FORM CSS
jQuery(document).ready(function() {			
	jQuery('input:text').addClass('text');
	jQuery('select').addClass('select');
	jQuery('input:submit').addClass('submit');
	jQuery('.cform li').addClass('clearfix');
});