/*
 * Main scripts page
 */

/********************** SIFR activation ***********************/

//< ![CDATA[	
	
/******************** MAIN(banner) and RIGHT(customers) Scrooling activation *********************/

$(document).ready(function(){	
	
	/*$.sifr({
		path: host+"/js/",				
		font: 'rockwell',
		save: true,
		wmode: 'transparent'
	});
	
	$('h1').sifr({
		fontSize: '24px'
	});
	
	$('h2').sifr({
		fontSize: '22px'
	});*/
	
	
	$("#print").click(function(){
		window.print();
	});
	
	$(".fontChangeButton").click(function(){
		switch($(this).attr('id')){
			case "btnSmall":
				$('div.text-editor').css('font-size','11px');
				break; 
			case "btnMedium": 				
				$('div.text-editor').css('font-size','12px');
				break; 				
			case "btnLarge": 				
				$('div.text-editor').css('font-size','14px');
				break; 							
		}
	});	
	

	    	  

	$("#our-left-arrow,#our-right-arrow").show();
		
	/***************************************************/

	$("#banner-img").cycle({
		fx: "fade",
		speedIn: 2100,
		speedOut: 1800,
		timeout: 0,
		pager: "#banner-pan",
		random: 1,
		pagerAnchorBuilder: function(idx, slide) { 
        	return '<a href="#"></a>';
    	}
	});
	
	$("#customers-img").cycle({
    	fx: "fade", 
	    speedIn:  2500, 
	    speedOut: 500,
		prev: "#our-left-arrow",
		next: "#our-right-arrow",
		random: 1
	});
	
	
	$('a[rel=external]').click(function(){

        this.target = "_blank";

    });    
	
});

//]]>