/**
 * JQuery Popup
 * 
 * By: Digital visions
 *
 * Url: http://www.dvq.co.nz/web-design/create-a-jquery-popup-bubble-effect/
 * 
 * Modified by: croussy
 * 
 * Example: 
 * 
<!-- jQuery popup -->
<script type="text/javascript" src="$javascript_folder/jquery.popup.js"></script>

#* --- JQUERY POPUP --- *#
<div class="banner-sign-content rss-popup">
	<a href="$sign_in_url">#language ("banner.signin")</a>
	<em>#language ("banner.register.popup")</em>
</div>

 */

jQuery(document).ready(
	function(){
	jQuery(".rss-popup a").hover(
		function() {
			jQuery(this).next("em").stop(true, true).animate({opacity: "show", top: "40"}, "slow");
		}
		, 
		function() {
			jQuery(this).next("em").animate({opacity: "hide", top: "30"}, "fast");
		}
	);

});
