
	jQuery().ready(function() {
		jQuery('.kwicks').kwicks({
			max: 525,
			spacing:  2
		});
	});



	jQuery(document).ready(function(){
		jQuery("a[rel^='prettyPhoto']").prettyPhoto();
	});




jQuery(function() {
    jQuery('#ems_products').cycle();

});

jQuery(document).ready(function(){
				jQuery('#font_size_callout input').click(function() {

					if(this.id == 'large') {
						enlargeFontSize();
					}
					else if (this.id == 'small'){
						shrinkFontSize();

					}
				});
			});

function enlargeFontSize() {
					var ourText = jQuery('p');
					var currFontSize = ourText.css('fontSize');					
					var finalNum = parseFloat(currFontSize, 10);
					var stringEnding = currFontSize.slice(-2);
					finalNum += 2;
					if(finalNum <= 16) {
						ourText.css('fontSize', finalNum + stringEnding);
					}
}//end enlargeFontSize

function shrinkFontSize() {
					var ourText = jQuery('p');
					var currFontSize = ourText.css('fontSize');					
					var finalNum = parseFloat(currFontSize, 10);
					var stringEnding = currFontSize.slice(-2);
					finalNum -= 2;
					if(finalNum >= 10) {
						ourText.css('fontSize', finalNum + stringEnding);
					}
}//end shrinkFontSize