$(document).ready(function() {
	$('#sms_rotate').click(function() {
		if($(this).attr('src') == './img/body_content_1.jpg') {
			$(this).attr('src', './img/body_content_2.jpg');
		} else {
			$(this).attr('src', './img/body_content_1.jpg');		
		}
	});
	
	$('#login_button').mouseover(function() {
		$(this).attr('src', './img/login_button_hover.png');
	});
	
	$('#login_button').mouseout(function() {
		$(this).attr('src', './img/login_button.png');
	});
		
	$('#login_link').click(function() {
		$('#sms_form').submit();
		
		return false;
	});
});