// JavaScript Document
$(document).ready(function($){
    var newPath = '/_js/fontreplace/fontReplace/'; //update this

	// DEMO 
	//$('h3').fontReplace({fontFile: 'satisfaction',height:45,fontSize:20});
	
	//Sublime 'live' :: Sage color theme
	$('#package.pink_sage h1').fontReplace({path:newPath,fontFile: 'satisfaction',height:44,fontSize:25,fontColor:'#FFFFFF',background:'#CACF93'});
	$('#package.sage h1').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#E4E7C9',background:'#CACF93'});
	
	//Sublime 'laugh' :: Rose color theme
	$('#package.rose h1').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:35,fontColor:'#E8BFC2',background:'#D18086'});

	//Sublime 'be' :: Blue color theme
	$('#package.blue h1').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:50,fontColor:'#D4E1E0',background:'#A9C3C2'});

	//Branding Section 
	$('#branding .fontreplace').fontReplace({path:newPath,fontFile: 'satisfaction',height:50,fontSize:17,fontColor:'#999999',background:'#666666'});
	
	//page specific fontreplace *this should be place in page head for sublime color themes
	$('.grey #content_main h1, .grey #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#999999',background:'#ffffff'});
	$('.pink_sage #content_main h1, .pink_sage #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#b83c46',background:'#ffffff'});
	$('.pink #content_main h1, .pink #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#DB91A3',background:'#ffffff'});
	$('.rose #content_main h1, .rose #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#B83C45',background:'#ffffff'});
	$('.sage #content_main h1, .sage #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#AFB559',background:'#ffffff'});
	$('.blue #content_main h1, .blue #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#7ba3a2',background:'#ffffff'});
	$('.gold #content_main h1, .gold #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#D2A951',background:'#ffffff'});
	$('.red #content_main h1, .red #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#95132b',background:'#ffffff'});
	$('.turq #content_main h1, .turq #content_main h2').fontReplace({path:newPath,fontFile: 'satisfaction',height:70,fontSize:40,fontColor:'#077D87',background:'#ffffff'});


})(jQuery);

