/**
 * @author Krzysztof Sobieraj
 * 
 * @since 2010-04-06
 * @version 0.1
 */
$.noConflict();

jQuery(document).ready(function(){
	jQuery('#smsOfferButton').find('img').mouseenter(function(){
		smsHoverButton(jQuery(this), 'on');
	});

	jQuery('#smsOfferButton').find('img').mouseleave(function(){
		smsHoverButton(jQuery(this), 'out');
	});
});

function smsHoverButton(oActiveElement, sAction) {
	
	switch(sAction) {
		case 'on':
			oActiveElement.attr('src', 'http://www.parkiet.com/materialy/sr/notowania_sms/sms_button_hover.jpg');
			break;
		
		case 'out':
			oActiveElement.attr('src', 'http://www.parkiet.com/materialy/sr/notowania_sms/sms_button.jpg');
			break;
	}
}

