/** 
 * site.js
 *
 * @Author: Andy Do <andy.do@resiteonline.com>
 *
 * This included JS is for all neccessary javascripts and functions for site.
 *
 * Last Modification: 7.29.2010
 */

var newWin;

	$(document).ready(function() {
		// Icon Links on Community Pages
		$('IMG.iconLink').hover(
			function () {
				var imgSrc = "images/" + $(this).attr('id') + "_on.png";
				$(this).attr('src', imgSrc);
			},
			function () {
				var imgSrc = "images/" + $(this).attr('id') + "_off.png";
				$(this).attr('src', imgSrc);
			}
		);
	});





