/* Sticky Footer 
########################################################################################*/

jQuery (function() {
	var h = jQuery("#footer-wrap").outerHeight(true);
	jQuery("#content-container").css("paddingBottom", h + "px");
	jQuery("#footer").css("marginTop", "-" + h + "px").css("height", h + "px");
	jQuery("#footer-flower").css("height", h + "px");
});

/* External Link
########################################################################################*/

jQuery (function() {

    jQuery("a.external_link").each(function(i){
        var tmp = jQuery(this).html();
        jQuery(this).html( tmp +'<span class="external_icon"> - (Opens in a new window)</span>');
        tmp = null;
    });
	
	jQuery('a.external_link').click(function(){
		window.open(this.href);
		return false;
	});
    
});


jQuery (function() {

    jQuery("#twitter-inside a").each(function(i){
        var tmp = jQuery(this).html();
        jQuery(this).html( tmp +'<span class="external_icon"> - (Opens in a new window)</span>');
        tmp = null;
    });
	
	jQuery('#twitter-inside a').click(function(){
		window.open(this.href);
		return false;
	});
    
});

jQuery (function() {

    jQuery(".external_links a").each(function(i){
        var tmp = jQuery(this).html();
        jQuery(this).html( tmp +'<span class="external_icon"> - (Opens in a new window)</span>');
        tmp = null;
    });
	
	jQuery('.external_links a').click(function(){
		window.open(this.href);
		return false;
	});
    
});

/* Labelify
########################################################################################*/

jQuery (function() {

 	jQuery("input#s").labelify({text: "label", labelledClass: "labelinside"});

});


/* Cufon (American Typewriter)
########################################################################################*/
Cufon.replace('h1, h2, #maisonette-address, #contact-maisonette-address, #contact-barras-address, #maisonette-intro p, .mailing-list .opening-para, .vendor-newsletter .opening-para.application-title', { fontFamily: 'AmerType Md BT' });
