/* Rounded Corners */		DD_roundies.addRule('.rounded', '8px 8px 0px 0px', true);		/* LightBox */				$(document).ready(function(){				$(".lightbox").lightbox();		});/* My Scripts */					$(document).ready(function(){			$("#patient_new").hover(				function () {					$(this).find("img").addClass('switch-image');				}, 				function () {					$(this).find("img").removeClass('switch-image');				}			);			$("#patient_return").hover(				function () {					$(this).find("img").addClass('switch-image');				}, 				function () {					$(this).find("img").removeClass('switch-image');				}			);					});		/* Tabs */					$(function(){			 $('#tabs').tabs();				 }); 		 
/* jFlow slider */		$(document).ready(function(){			$("#controller").jFlow({				slides: "#slideshow-content-padding",				width: "100%",				height: "320px",				duration: 2000,				timeout: 5000, 				enable_opacity_change: true			});					});			
/* innerfade slideshow */				$(document).ready(function(){						$('.fade').innerfade({				speed: 1000,				timeout: 6000, 				type: 'random_start',				containerheight: '321px'			});		});			/* Tab Slideout (Contact Us) */				$(function(){				$('#phone-header').addClass('hidden')			$('.slide-out-div').removeClass('hidden').tabSlideOut({				 tabHandle: '.handle',                              //class of the element that will be your tab				 pathToTabImage: '../images/icons/contact_button.png',          //path to the image for the tab (optionaly can be set using css)				 imageHeight: '37px',                               //height of tab image				 imageWidth: '153px',                               //width of tab image    				 tabLocation: 'top',                               //side of screen where tab lives, top, right, bottom, or left				 speed: 300,                                        //speed of animation				 action: 'click',                                   //options: 'click' or 'hover', action to trigger animation				 topPos: '0px',                                   //position from the top				 fixedPosition: false                               //options: true makes it stick(fixed position) on scroll			 });		 });/* Collapse & Expand  */				$(function(){			$('.collapse').collapsible();		});		
